Search
IGraphics.DrawPolygon Method
See Also
 





Draws a polygon specified by a poins list.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void DrawPolygon (
    Pen pen,
    IList<Point> points
)

Visual Basic  Copy Code

Sub DrawPolygon( _
    pen As Pen, _
    points As IList(Of Point) _
)

 Parameters

pen

A Pen object that determines the color, width, and style of the polygon.

points

A list of points that represents the polygon to draw.

 See Also